home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / template / templsat.rc < prev   
Text File  |  1995-11-25  |  4KB  |  128 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // <<DEFCONTROLNAME>>.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24. RESID_TOOLBOX_BITMAP    BITMAP DISCARDABLE "<<DEFCONTROLTRUNCNAME>>Ctl.Bmp"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Our Non-Localized Type Library
  29. //
  30. 1 TYPELIB <<DEFCONTROLNAME>>.TLB
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. //
  34. //    This table includes the languages supported by this server.
  35. //    Each language maps to a satalite DLL that contains error messages.
  36. //
  37. //      - if you do not want to use satellite Localization, then
  38. //        remove this table
  39. //      - TODO: add any new languages you wish to support to this table
  40. //
  41. INTLSZ_LANGMAP RCDATA DISCARDABLE 
  42. BEGIN
  43. //    Primary Language ID  SubLanguage ID          Satalite DLL
  44. //    -------------------  --------------          ------------
  45.     LANG_FRENCH,         SUBLANG_FRENCH,         "<<DEFCONTROLNAME>>FR.DLL","\0",
  46.     LANG_JAPANESE,       SUBLANG_DEFAULT,        "<<DEFCONTROLNAME>>JP.DLL","\0",
  47. END
  48.  
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  53. /////////////////////////////////////////////////////////////////////////////
  54.  
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. //
  59. // String tables with Exception Information, etc.
  60. //
  61. STRINGTABLE DISCARDABLE
  62. BEGIN
  63.     IDS_PROPERTIES,                     "<<DEFCONTROLNAME>> Properties"
  64.     IDS_<<DEFCONTROLNAMECAPS>>_GENERALPAGETITLE,        "General Properties"
  65.     IDS_<<DEFCONTROLNAMECAPS>>_GENERALDOCSTRING,        "General properties for the <<DEFCONTROLNAME>> control"
  66. END
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69. //
  70. // Property Page Dialog
  71. //
  72.  
  73. IDD_PROPPAGE_<<DEFCONTROLNAMECAPS>>GENERAL DIALOG DISCARDABLE  0, 0, 195, 127
  74. STYLE WS_CHILD | 0x4
  75. FONT 8, "MS Sans Serif"
  76. BEGIN
  77. END
  78.  
  79. /////////////////////////////////////////////////////////////////////////////
  80. // Version Information
  81. /////////////////////////////////////////////////////////////////////////////
  82. //
  83. #include "dwinvers.h"
  84. #include <winver.h>
  85.  
  86. VS_VERSION_INFO VERSIONINFO
  87.  
  88. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  89. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  90.  
  91.  
  92. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  93. #ifdef DEBUG
  94. FILEFLAGS    VS_FF_DEBUG
  95. #else
  96. FILEFLAGS    0L
  97. #endif
  98.  
  99. FILEOS        VOS_NT_WINDOWS32
  100.  
  101. FILETYPE    VFT_DLL
  102. FILESUBTYPE    0
  103. {
  104.     BLOCK "StringFileInfo"
  105.     {
  106.         BLOCK "040904B0" // Language and character set identifiers.
  107.         {
  108.             VALUE "CompanyName",     "My Company Name\0"
  109.             VALUE "FileDescription", "<<DEFCONTROLNAME>>"
  110.             VALUE "FileVersion",     vszVersNumAll
  111.             VALUE "InternalName",    "<<DEFCONTROLNAME>>.Ocx\0"
  112.             VALUE "LegalCopyright",  vszCopyright
  113.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  114.             VALUE "ProductName",     "<<DEFCONTROLNAME>> Object Library\0"
  115.             VALUE "ProductVersion",  vszVersNumAll
  116.             VALUE "Comments",        vszMakeDate
  117.             VALUE "OLESelfRegister", "\0"
  118.         }
  119.     }
  120.     BLOCK "VarFileInfo"
  121.     {
  122.         VALUE "Translation" ,0x409, 0x4b0
  123.     }
  124. }
  125.  
  126.  
  127.  
  128.